Northern Region Eclair Orders and Results FHIR API icon

Northern Region Eclair Orders and Results FHIR API

(0 reviews)

GET Practitioner

Practitioner Resource Implementation

Reference: http://hl7.org/fhir/R4/patient.html

Element / Node NamesDescription
addressAn address for the healthcare practitioner
identifierHealthcare practitioner CPN
nameThe name associated with the healthcare practitioner
resourceTypeRepresents the FHIR domain resource type

Query Parameters

The following parameters are supported for performing queries on FHIR Patient resource. See http://hl7.org/fhir/R4/searchparameter-registry.html for further information.

DataParameterExample
identifierpractitioner.identifier

Sample payload

    {
  "resourceType": "Practitioner",
  "id": "35eea1fb-7f8f-4de5-8e5a-17a813498a95",
  "identifier": [
    {
      "use": "official",
      "type": {
        "coding": [
          {
            "system": "https://standards.digital.health.nz/ns/hpi-person-id",
            "code": "Health Provider Index (HPI)"
          }
        ],
        "text": "Health Provider Index (HPI)"
      },
      "system": "https://standards.digital.health.nz/ns/hpi-personid",
      "value": "96ZZZZ"
    }
  ],
  "name": [
    {
      "use": "official",
      "text": "SYSMEX ANDREW",
      "family": "Sysmex",
      "given": [
        "Andrew"
      ]
    }
  ],
  "address": [
    {
      "use": "home",
      "type": "both",
      "line": [
        "23 SYSMEX WAY"
      ],
      "city": "Auckland",
      "country": "NZ"
    }
  ]
}

Reviews